home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / include / alloca.h next >
C/C++ Source or Header  |  1995-09-11  |  290b  |  20 lines

  1. /* alloca() */
  2.  
  3. #ifndef _ALLOCA_H
  4. #define _ALLOCA_H 1
  5.  
  6. #ifndef __SASC
  7. #error Wrong compiler (SAS/C required)
  8. #endif
  9.  
  10. #ifndef _PROFILE
  11. #error Code using alloca() must be compiled with the PROFILE option
  12. #endif
  13.  
  14. #include <stddef.h>
  15.  
  16. extern void *alloca(size_t size);
  17.  
  18. #endif /* _ALLOCA_H */
  19.  
  20.